runtime.gcTrigger.kind (field)

7 uses

	runtime (current package)
		malloc.go#L1204: 		if t := (gcTrigger{kind: gcTriggerHeap}); t.test() {
		mgc.go#L442: 	gcStart(gcTrigger{kind: gcTriggerCycle, n: n + 1})
		mgc.go#L518: 	kind gcTriggerKind
		mgc.go#L549: 	switch t.kind {
		mgc.go#L612: 	work.userForced = trigger.kind == gcTriggerCycle
		proc.go#L307: 		gcStart(gcTrigger{kind: gcTriggerTime, now: nanotime()})
		proc.go#L5177: 		if t := (gcTrigger{kind: gcTriggerTime, now: now}); t.test() && atomic.Load(&forcegc.idle) != 0 {